home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk61 / dchecker / devinfo.h < prev    next >
C/C++ Source or Header  |  1995-03-19  |  778b  |  17 lines

  1. struct MyDevInfo {
  2.     char *DeviceName;           /* exec device name */
  3.     ULONG Unit;                 /* exec unit number */
  4.     ULONG DeviceFlags;          /* flags to OpenDevice */
  5.     ULONG BlockSize;            /* in bytes */
  6.     ULONG Surfaces;             /* # of heads */
  7.     ULONG BlocksPerTrack;       /* blocks per track (not cylinder) */
  8.     ULONG Reserved;             /* number of reserved blocks at beginning */
  9.     ULONG PreAlloc;             /* number of reserved blocks at end */
  10.     ULONG LowCyl;               /* first cylinder */
  11.     ULONG HighCyl;              /* last cylinder */
  12.     ULONG BufMemType;           /* type of memory for buffers */
  13.     ULONG DosType;              /* 0x444F5300 or 0x444F5301 */
  14. };
  15.  
  16. extern  struct MyDevInfo *getDevInfo();
  17.